home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 2000 August / Designer's Club 2000 August.iso / pc / DC Users Guide / Tutorials / Flash_Tutorial.exe / Flash_Tutorial.DXR / 00052.ls < prev    next >
Encoding:
Text File  |  2000-06-29  |  597 b   |  31 lines

  1. on mouseEnter me
  2.   global Up
  3.   puppetSound(1, "sniff")
  4.   cursor(280)
  5.   set Up to the memberNum of sprite the spriteNum of me
  6.   set the memberNum of sprite the spriteNum of me to Up + 1
  7. end
  8.  
  9. on mouseLeave me
  10.   global Up
  11.   cursor(-1)
  12.   set the memberNum of sprite the spriteNum of me to Up
  13. end
  14.  
  15. on mouseDown me
  16.   global Up
  17.   puppetSound(1, "houndwhine")
  18.   repeat while the mouseDown
  19.     cursor(-1)
  20.     set the memberNum of sprite the clickOn to Up + 2
  21.     updateStage()
  22.   end repeat
  23. end
  24.  
  25. on mouseUp me
  26.   global Up
  27.   cursor(-1)
  28.   set the memberNum of sprite the clickOn to Up + 1
  29.   updateStage()
  30. end
  31.